home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / TREE.HLP < prev    next >
Text File  |  1985-09-10  |  1KB  |  44 lines

  1. ------------------------  TREE - External DOS Command  -------------------------
  2.  
  3. TREE displays the directories and paths and optionally lists the files in each
  4.    subdirectory.
  5.  
  6. FORMAT:   TREE [d:][/F]
  7.  
  8. REMARKS:
  9.  
  10.    d:  - the drive letter of the disk whose directories are to be shown.  If
  11.          omitted, the default drive is assumed.
  12.  
  13.    /F  - displays the names of all files in each subdirectory.  Files in the
  14.          root directory are not listed.
  15.  
  16.    The displayed directory paths show each full path name and the names of any
  17.    subdirectories.
  18.  
  19.    In DOS Version 3, you may preface TREE with the drive letter and directory
  20.    path, [d:][path], where the command file can be found.
  21.  
  22. EXAMPLES:
  23.  
  24. Display the directories and paths on the C disk:
  25.  
  26.           TREE C:
  27.  
  28.  
  29. Display the directories, paths and the names of all files in each subdirectory
  30. on the default drive.  Halt display scrolling when the screen is full:
  31.  
  32.           TREE /F | MORE
  33.  
  34.  
  35. Print the directories and paths on the default drive:
  36.  
  37.           TREE > PRN
  38.  
  39.  
  40. Write the listing of directories and paths on the default drive to the file
  41. TREEFILE:
  42.  
  43.           TREE > TREEFILE
  44.